net/http.http2ClientConn.t (field)

35 uses

	net/http (current package)
		h2_bundle.go#L7636: 	t             *http2Transport
		h2_bundle.go#L7816: 		cs.cc.t.markNewGoroutine()
		h2_bundle.go#L8104: 		t:                           t,
		h2_bundle.go#L8200: 	ctx, cancel := cc.t.contextWithTimeout(context.Background(), pingTimeout)
		h2_bundle.go#L8350: 	if cc.t.StrictMaxConcurrentStreams {
		h2_bundle.go#L8403: 	return cc.idleTimeout != 0 && !cc.lastIdle.IsZero() && cc.t.timeSince(cc.lastIdle.Round(0)) > cc.idleTimeout
		h2_bundle.go#L8469: 		cc.t.markNewGoroutine()
		h2_bundle.go#L8548: 	if f := cc.t.CountError; f != nil {
		h2_bundle.go#L8559: 	if cc.t.t1 != nil {
		h2_bundle.go#L8560: 		return cc.t.t1.ResponseHeaderTimeout
		h2_bundle.go#L8614: 	cs.requestedGzip = httpcommon.IsRequestGzip(req.Method, req.Header, cc.t.disableCompression())
		h2_bundle.go#L8710: 	cs.cc.t.markNewGoroutine()
		h2_bundle.go#L8781: 	continueTimeout := cc.t.expectContinueTimeout()
		h2_bundle.go#L8841: 		timer := cc.t.newTimer(d)
		h2_bundle.go#L8947: 	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil
		h2_bundle.go#L9036: 		cc.lastActive = cc.t.now()
		h2_bundle.go#L9376: 	cc.lastActive = cc.t.now()
		h2_bundle.go#L9379: 		cc.lastIdle = cc.t.now()
		h2_bundle.go#L9385: 	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil
		h2_bundle.go#L9405: 	cc.t.markNewGoroutine()
		h2_bundle.go#L9472: 	idleTime := cc.t.now().Sub(cc.lastActive)
		h2_bundle.go#L9474: 		cc.idleTimer = cc.t.afterFunc(unusedWaitTime-idleTime, func() {
		h2_bundle.go#L9475: 			cc.t.connPool().MarkDead(cc)
		h2_bundle.go#L9479: 		cc.t.connPool().MarkDead(cc)
		h2_bundle.go#L9506: 	f := cc.t.CountError
		h2_bundle.go#L9536: 		t = cc.t.afterFunc(readIdleTimeout, cc.healthCheck)
		h2_bundle.go#L9732: 			limit := int64(cs.cc.t.maxHeaderListSize())
		h2_bundle.go#L9733: 			if t1 := cs.cc.t.t1; t1 != nil && t1.MaxResponseHeaderBytes > limit {
		h2_bundle.go#L10098: 	cc.t.connPool().MarkDead(cc)
		h2_bundle.go#L10102: 		if fn := cc.t.CountError; fn != nil {
		h2_bundle.go#L10252: 	if fn := cs.cc.t.CountError; fn != nil {
		h2_bundle.go#L10282: 		cc.t.markNewGoroutine()
		h2_bundle.go#L10369: 	cc.t.logf(format, args...)
		h2_bundle.go#L10373: 	cc.t.vlogf(format, args...)
		h2_bundle.go#L10515: 		ci.IdleTime = cc.t.timeSince(cc.lastActive)